home *** CD-ROM | disk | FTP | other *** search
/ One Click 21 (Special) / OC021.iso / Juegos / King of Skeleton / King of Skeleton.swf / scripts / __Packages / PickupSnd.as < prev    next >
Encoding:
Text File  |  2006-02-02  |  213 b   |  14 lines

  1. class PickupSnd extends Sound
  2. {
  3.    var snd_mc;
  4.    function PickupSnd(t)
  5.    {
  6.       super(t);
  7.       this.snd_mc = t;
  8.    }
  9.    function onSoundComplete()
  10.    {
  11.       this.snd_mc.removeMovieClip();
  12.    }
  13. }
  14.